xen.git
18 years ago[HVM][SVM] Save/restore: set CPL from SS.DPL on restore
Tim Deegan [Fri, 13 Apr 2007 16:17:21 +0000 (17:17 +0100)]
[HVM][SVM] Save/restore: set CPL from SS.DPL on restore
(not needed on VMX, which doesn't keep the CPL separately from SS.DPL)
Signed-off-by: Tim Deegan <Tim.Deegan@xensource.com>
18 years agoMerge with xen-ia64-unstable.hg
Keir Fraser [Fri, 13 Apr 2007 15:07:48 +0000 (16:07 +0100)]
Merge with xen-ia64-unstable.hg

18 years agoFix TypeError with datetime() on old python version
Tom Wilkie [Fri, 13 Apr 2007 15:02:41 +0000 (16:02 +0100)]
Fix TypeError with datetime() on old python version

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years ago[IA64] Fix ptc.ga emulation
Alex Williamson [Fri, 13 Apr 2007 14:33:21 +0000 (08:33 -0600)]
[IA64] Fix ptc.ga emulation

ptc.ga infrequently clobbers the region register 0.

When vcpu1 purges TLBs of vcpu2 and ptc_ga_remote_func() is called
locally not via IPI (i.e. vcpu1 shares the same pcpu with vcpu2),
in ptc_ga_remote_func(),

  save vrr[0] of vcpu2
  ... => switch to vcpu2 and set a new value of vrr[0]
  restore vrr[0] of vcpu2 // the new value is lost

Windows will crash due to this issue.

Signed-off-by: Kouya Shimura <kouya@jp.fujitsu.com>
18 years agolinux netfront: Fixes to locking after lockdep-derived changes, as
Keir Fraser [Fri, 13 Apr 2007 14:24:42 +0000 (15:24 +0100)]
linux netfront: Fixes to locking after lockdep-derived changes, as
suggested by Herbert Xu.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agohvm: Clean up treatment of is_dying per-domain boolean. All critical
Keir Fraser [Fri, 13 Apr 2007 13:59:06 +0000 (14:59 +0100)]
hvm: Clean up treatment of is_dying per-domain boolean. All critical
checks are done under an appropriate lock, allowing the lock-free
protocols surrounding this boolean to be removed.

Also simplification and fixes to code for setting/zapping the ioreq
and buf_ioreq shared pages.

Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoAdd VM.migrate to XenAPI, add support to XM
Tom Wilkie [Fri, 13 Apr 2007 12:55:10 +0000 (13:55 +0100)]
Add VM.migrate to XenAPI, add support to XM

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agohvm: Fix some bugs in mmio decoder
kfraser@localhost.localdomain [Fri, 13 Apr 2007 11:30:04 +0000 (12:30 +0100)]
hvm: Fix some bugs in mmio decoder

Some instructions, like "add $imm8, r/m16"/"MOV $imm32, r/m64" require
the src immediate operand be sign-extented befere the op is executed,
but this is omitted in the current Xcode. The patch fixes this.
The patch also fixes an issue in handling address-size override
prefix, and fixes an issue in get_immediate().

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
18 years agohvm: Xen must take care to hold a reference to ioreq pages, to ensure
kfraser@localhost.localdomain [Fri, 13 Apr 2007 11:29:06 +0000 (12:29 +0100)]
hvm: Xen must take care to hold a reference to ioreq pages, to ensure
that domain runs only when it has valid mapped ioreq pages, and to
safely drop ioreq page references when a domain dies.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoUpdate .hgignore so it doesn't ignore buildconfigs/* only build-*
Ian Campbell [Fri, 13 Apr 2007 11:01:37 +0000 (12:01 +0100)]
Update .hgignore so it doesn't ignore buildconfigs/* only build-*

Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
18 years agoSimplify code to map interfaces to bridges
Tom Wilkie [Fri, 13 Apr 2007 10:43:50 +0000 (11:43 +0100)]
Simplify code to map interfaces to bridges

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agolinux: netfront contains two locking problems found by lockdep:
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:28:04 +0000 (11:28 +0100)]
linux: netfront contains two locking problems found by lockdep:

1. rx_lock is a normal spinlock, and tx_lock is an irq spinlock.  This
   means that in normal use, tx_lock may be taken by an interrupt
   routine while rx_lock is held.  However, netif_disconnect_backend
   takes them in the order tx_lock->rx_lock, which could lead to a
   deadlock. Reverse them.
2. rx_lock can also be used in softirq context, so it should be
   taken/released with spin_(un)lock_bh.

Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
18 years agopygriub: Fix GPT support.
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:23:26 +0000 (11:23 +0100)]
pygriub: Fix GPT support.
- 64 bit support for starting of a GPT partition.
- detect partition types precisely.

Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
18 years agohvm svm: Fix nested paging to support domain save/restore.
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:20:11 +0000 (11:20 +0100)]
hvm svm: Fix nested paging to support domain save/restore.
Signed-off-by: Wei Huang <wei.huang2@amd.com>
18 years agoMerge with xenppc-unstable-merge.hg
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:14:26 +0000 (11:14 +0100)]
Merge with xenppc-unstable-merge.hg

18 years agoMerge with xen-ia64-unstable.hg
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:11:41 +0000 (11:11 +0100)]
Merge with xen-ia64-unstable.hg

18 years agolibxenguest: Remove bogus weak definitions of xc_{set,get}_hvm_param().
kfraser@localhost.localdomain [Fri, 13 Apr 2007 10:09:58 +0000 (11:09 +0100)]
libxenguest: Remove bogus weak definitions of xc_{set,get}_hvm_param().
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years ago[XEN][POWERPC] Fix dom0 boot when using built-in zImage.
Hollis Blanchard [Thu, 12 Apr 2007 21:37:32 +0000 (16:37 -0500)]
[XEN][POWERPC] Fix dom0 boot when using built-in zImage.
We need to respect the ELF entry point.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
18 years ago[XEN][POWERPC] Fix debug=y build.
Hollis Blanchard [Thu, 12 Apr 2007 18:05:04 +0000 (13:05 -0500)]
[XEN][POWERPC] Fix debug=y build.
When debug=y, we use -O0 for single-stepping. This breaks the force-link-error
trick used in __xchg(), so we provide a real function to link with.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
18 years agomerge with xen-unstable.hg
Alex Williamson [Thu, 12 Apr 2007 16:30:12 +0000 (10:30 -0600)]
merge with xen-unstable.hg

18 years ago[IA64] Fix hyper_get_psr
Alex Williamson [Thu, 12 Apr 2007 16:26:42 +0000 (10:26 -0600)]
[IA64] Fix hyper_get_psr

It didn't return correct psr.i value.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
18 years ago[IA64] Formatting fix
Alex Williamson [Thu, 12 Apr 2007 16:24:53 +0000 (10:24 -0600)]
[IA64] Formatting fix

This extra space after the newline causes printk to get confused
and re-evaluate do_print and leave start_of_line == 0.  Anything
printed after this will always print, regardless of intended
log level.

Signed-off-by: Alex Williamson <alex.williamson@hp.com>
18 years ago[XEN][POWERPC] Fix garbage dom0 commandline.
Hollis Blanchard [Thu, 12 Apr 2007 15:42:43 +0000 (10:42 -0500)]
[XEN][POWERPC] Fix garbage dom0 commandline.
Debugged by Amos Waterland <apw@us.ibm.com>.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
18 years ago[XEN][POWERPC] Fix xchg macro.
Hollis Blanchard [Thu, 12 Apr 2007 15:27:05 +0000 (10:27 -0500)]
[XEN][POWERPC] Fix xchg macro.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
18 years agoMerge
Tim Deegan [Thu, 12 Apr 2007 14:55:24 +0000 (15:55 +0100)]
Merge

18 years ago[HVM] Save/restore: catch more error cases in the tools
Tim Deegan [Thu, 12 Apr 2007 14:54:59 +0000 (15:54 +0100)]
[HVM] Save/restore: catch more error cases in the tools
Signed-off-by: Tim Deegan <Tim.Deegan@xensource.com>
18 years agoAdd PyXML requirement for xm via XenAPI to docs
Tom Wilkie [Thu, 12 Apr 2007 14:44:02 +0000 (15:44 +0100)]
Add PyXML requirement for xm via XenAPI to docs

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years ago[HVM] Fix typo that broke x86_64 build
Tim Deegan [Thu, 12 Apr 2007 14:07:20 +0000 (15:07 +0100)]
[HVM] Fix typo that broke x86_64 build
Signed-off-by: Tim Deegan <Tim.Deegan@xensource.com>
18 years ago[HVM] Save/restore: save HVM GPRs and DRs with the rest of the CPU state
Tim Deegan [Thu, 12 Apr 2007 14:02:03 +0000 (15:02 +0100)]
[HVM] Save/restore: save HVM GPRs and DRs with the rest of the CPU state
and remove the use of xc_vcpu_getcontext() from HVM save/restore.
Also fixes loss of CR2, DR6 and DR7 contents across HVM save/restore.
Signed-off-by: Tim Deegan <Tim.Deegan@xensource.com>
18 years agoHVM: First attempt at domain-resume on save-failure.
kfraser@localhost.localdomain [Thu, 12 Apr 2007 13:13:04 +0000 (14:13 +0100)]
HVM: First attempt at domain-resume on save-failure.

Not working yet as we are a bit too keen to kill the qemu-dm process,
before we know that the save has been successful.

Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoHVM: Allow qemu monitor to be configured in domain config file.
kfraser@localhost.localdomain [Thu, 12 Apr 2007 12:21:26 +0000 (13:21 +0100)]
HVM: Allow qemu monitor to be configured in domain config file.
From: Yongkang You <yongkang.you@intel.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoxend: Update config-format version, due to changes in 3.0.5.
kfraser@localhost.localdomain [Thu, 12 Apr 2007 12:18:08 +0000 (13:18 +0100)]
xend: Update config-format version, due to changes in 3.0.5.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
18 years agoEnsure xenapi create passes in values even if unused
Tom Wilkie [Thu, 12 Apr 2007 11:48:27 +0000 (12:48 +0100)]
Ensure xenapi create passes in values even if unused

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agoHVM: Do not watch control/shutdown to force domain shutdowns when PV
kfraser@localhost.localdomain [Thu, 12 Apr 2007 11:12:56 +0000 (12:12 +0100)]
HVM: Do not watch control/shutdown to force domain shutdowns when PV
drivers are not present. The feature-foo mechanism does not actually
work after save/restore since the fields do not get rewritten. And it
doesn't work when we actually need the guest to be shutdown through
Xen (e.g., on suspend). Since we can quite reasonably assume that the
only entity to screw with control/shutdown is xend, and since the one
place that does that now explicitly handles unenlightened HVM guests,
we can simply strip all this stuff out.

This has the nice benefit of making HVM save/restore with PV drivers
much more reliable.

Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoPV-on-HVM: More carefully synchronise with APs when putting them to
kfraser@localhost.localdomain [Thu, 12 Apr 2007 11:09:58 +0000 (12:09 +0100)]
PV-on-HVM: More carefully synchronise with APs when putting them to
sleep in a spin loop.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoMake xm info more permissive
Tom Wilkie [Thu, 12 Apr 2007 10:44:26 +0000 (11:44 +0100)]
Make xm info more permissive

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agoMake Xm Test default to bridge when cannot read config file
Tom Wilkie [Thu, 12 Apr 2007 10:32:25 +0000 (11:32 +0100)]
Make Xm Test default to bridge when cannot read config file

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agoFix typo and make create send proper bools
Tom Wilkie [Thu, 12 Apr 2007 10:31:17 +0000 (11:31 +0100)]
Fix typo and make create send proper bools

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

18 years agoPV-on-HVM: Fix 64-bit build.
kfraser@localhost.localdomain [Thu, 12 Apr 2007 07:02:38 +0000 (08:02 +0100)]
PV-on-HVM: Fix 64-bit build.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years ago[IA64] Fix PV-on-HVM driver
Alex Williamson [Thu, 12 Apr 2007 05:15:30 +0000 (23:15 -0600)]
[IA64] Fix PV-on-HVM driver

xen-platform-pci fails to load w/ undefined symbols for some of the
sched_op hypercalls in machine_reboot.c.  This adds them to xencomm
mini to allow them to be called from modules.

Signed-off-by: Alex Williamson <alex.williamson@hp.com>
18 years ago[IA64] Bugzilla 942 Fix (timer strangeness on restored PV domain)
Alex Williamson [Thu, 12 Apr 2007 04:46:10 +0000 (22:46 -0600)]
[IA64] Bugzilla 942 Fix (timer strangeness on restored PV domain)

Time interpolator remembers last status.  When domain is restored, it
should be forgotten. Otherwise the interpolator causes bad timer value.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
18 years ago[ioemu] Consistently extend all block device operations to include scsi disks.
Christian Limpach [Wed, 11 Apr 2007 22:05:07 +0000 (23:05 +0100)]
[ioemu] Consistently extend all block device operations to include scsi disks.

Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
18 years ago[setup] Fix old style bridge setup.
Christian Limpach [Wed, 11 Apr 2007 18:04:10 +0000 (19:04 +0100)]
[setup] Fix old style bridge setup.
Also only warn that we ran out of veth interfaces if we have any at all.

Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
18 years agoAdd documentation and C bindings for VM.add_to_VCPUs_params_live,
Ewan Mellor [Wed, 11 Apr 2007 21:24:30 +0000 (22:24 +0100)]
Add documentation and C bindings for VM.add_to_VCPUs_params_live,
VM.set_memory_dynamic_{min,max}_live.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
18 years agoAdded documentation and bindings for host_cpu.features.
Ewan Mellor [Wed, 11 Apr 2007 20:55:05 +0000 (21:55 +0100)]
Added documentation and bindings for host_cpu.features.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
18 years agolinux: Quieten blkfront output.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 13:34:08 +0000 (14:34 +0100)]
linux: Quieten blkfront output.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoxend: Store canonical vnif config info in /vm/<uuid>/device
kfraser@localhost.localdomain [Wed, 11 Apr 2007 13:30:56 +0000 (14:30 +0100)]
xend: Store canonical vnif config info in /vm/<uuid>/device
rather than in frontend store directory. Two advantages are that the
frontend cannot mess with the config information; also an
ioemu-specific vif does nto need a frontend directory at all. This
avoids confusing netfront pv-on-hvm driver.
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agomerge with xen-unstable.hg
Alex Williamson [Wed, 11 Apr 2007 13:30:02 +0000 (07:30 -0600)]
merge with xen-unstable.hg

18 years ago[IA64] Skip MCA setup on domU
Alex Williamson [Wed, 11 Apr 2007 13:28:29 +0000 (07:28 -0600)]
[IA64] Skip MCA setup on domU

This effectively automates passing the nomca flag to domUs,
preventing them from setting up CMC/CPE interrupts.  This saves
3 dynamic IRQs per processor and allows us to get domUs up to 64
vCPUs without increasing the number of dynamic IRQs available.

Signed-off-by: Alex Williamson <alex.williamson@hp.com>
18 years ago[IA64] Handle NAT bit for dom0 and domU
Alex Williamson [Wed, 11 Apr 2007 13:24:44 +0000 (07:24 -0600)]
[IA64] Handle NAT bit for dom0 and domU

This fixes ia32 apps running under the IA32-EL.

Signed-off-by: Anthony Xu <anthony.xu@intel.com>
19 years agoPV-on-HVM: Fixes for module loading.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 08:29:00 +0000 (09:29 +0100)]
PV-on-HVM: Fixes for module loading.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoPV-on-HVM: More save/restore fixes.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 08:16:04 +0000 (09:16 +0100)]
PV-on-HVM: More save/restore fixes.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agolinux: Fix an error path in save/restore code.
kfraser@localhost.localdomain [Tue, 10 Apr 2007 19:00:45 +0000 (20:00 +0100)]
linux: Fix an error path in save/restore code.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years ago[TAPDISK] Fix qcow initialization bug.
Jake Wires [Tue, 10 Apr 2007 18:40:43 +0000 (11:40 -0700)]
[TAPDISK] Fix qcow initialization bug.

fd_end was being incorrectly initialized upon open, leading to data corruption.

Signed-off-by: Jake Wires <jwires@xensource.com>
19 years agoAdded docs and bindings for VM_metrics.state.
Ewan Mellor [Tue, 10 Apr 2007 18:04:37 +0000 (19:04 +0100)]
Added docs and bindings for VM_metrics.state.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
18 years ago[linux] Make CONFIG_XEN_COMPAT #if statements syntactically correct.
Christian Limpach [Wed, 11 Apr 2007 17:39:05 +0000 (18:39 +0100)]
[linux] Make CONFIG_XEN_COMPAT #if statements syntactically correct.

Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
18 years agoLINUX: Cleanup a few stray uses of CONFIG_XEN_COMPAT_030002.
Ian Campbell [Wed, 11 Apr 2007 15:08:35 +0000 (16:08 +0100)]
LINUX: Cleanup a few stray uses of CONFIG_XEN_COMPAT_030002.

Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
18 years agoMerge with xen-ia64-unstable.hg
kfraser@localhost.localdomain [Wed, 11 Apr 2007 14:45:29 +0000 (15:45 +0100)]
Merge with xen-ia64-unstable.hg

18 years agoProvide the use of SCSI disks in HVM domains. Currently there is a
kfraser@localhost.localdomain [Wed, 11 Apr 2007 14:43:49 +0000 (15:43 +0100)]
Provide the use of SCSI disks in HVM domains.  Currently there is a
maximum of 7 scsi disks and an ide disk must still be used to boot.

Signed-off-by: Natasha Jarymowycz <natasha@us.ibm.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoFix pygrub for IA64 support.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 14:36:04 +0000 (15:36 +0100)]
Fix pygrub for IA64 support.
Signed-off-by: Shinya Kuwamura <kuwa@jp.fujitsu.com>
Signed-off-by: Tomohiro Takahashi <takatom@jp.fujitsu.com>
18 years agopygrub: Support GPT (GUID Partition Table) as used by EFI.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 14:27:14 +0000 (15:27 +0100)]
pygrub: Support GPT (GUID Partition Table) as used by EFI.
Signed-off-by: Shinya Kuwamura <kuwa@jp.fujitsu.com>
Signed-off-by: Tomohiro Takahashi <takatom@jp.fujitsu.com>
18 years agolibfsimage: Fix data types for 64-bit architectures.
kfraser@localhost.localdomain [Wed, 11 Apr 2007 14:17:17 +0000 (15:17 +0100)]
libfsimage: Fix data types for 64-bit architectures.

In particular __u32 instead of ulong.

Signed-off-by: Tomohiro Takahashi <takatom@jp.fujitsu.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
18 years agoMerge
Tim Deegan [Wed, 11 Apr 2007 13:45:43 +0000 (14:45 +0100)]
Merge

18 years ago[HVM] Save/restore: merge xc_linux_save and xc_hvm_save
Tim Deegan [Wed, 11 Apr 2007 13:45:14 +0000 (14:45 +0100)]
[HVM] Save/restore: merge xc_linux_save and xc_hvm_save
into xc_domain_save, like we did for xc_domain_restore
Signed-off-by: Tim Deegan <Tim.Deegan@xensource.com>
--HG--
rename : tools/libxc/xc_linux_save.c => tools/libxc/xc_domain_save.c

19 years agolinux: Fix IRQ disable/enable logic across save/restore.
kfraser@localhost.localdomain [Tue, 10 Apr 2007 17:49:20 +0000 (18:49 +0100)]
linux: Fix IRQ disable/enable logic across save/restore.
stop_machine_run() executes our callback function with interrupts
disabled.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoAdded docs and bindings for VM.{send_trigger,send_sysrq}.
Ewan Mellor [Tue, 10 Apr 2007 16:29:16 +0000 (17:29 +0100)]
Added docs and bindings for VM.{send_trigger,send_sysrq}.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agoAvoid using the multicol package.
Ewan Mellor [Tue, 10 Apr 2007 16:26:45 +0000 (17:26 +0100)]
Avoid using the multicol package.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agoMake date time handling slightly more permissive
Tom Wilkie [Tue, 10 Apr 2007 16:01:40 +0000 (17:01 +0100)]
Make date time handling slightly more permissive

signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>

19 years agomerge with xen-unstable.hg
Alex Williamson [Mon, 9 Apr 2007 19:40:25 +0000 (13:40 -0600)]
merge with xen-unstable.hg

19 years ago[IA64] Fix PV-on-HVM VNIF to work without using balloon on IPF
Alex Williamson [Mon, 9 Apr 2007 19:39:35 +0000 (13:39 -0600)]
[IA64] Fix PV-on-HVM VNIF to work without using balloon on IPF

Temporary patch until we support the the balloon driver on HVM domains.

Signed-off-by: Tsunehisa Doi <Doi.Tsunehisa@jp.fujitsu.com>
19 years agoAdded documentation, C bindings, and a test for VM_metrics.{start_time,
Ewan Mellor [Mon, 9 Apr 2007 16:09:21 +0000 (17:09 +0100)]
Added documentation, C bindings, and a test for VM_metrics.{start_time,
VCPUs_CPU,VCPUs_params}.

Changed VM_metrics.start_time to be a DateTime, not an integer.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agoMake host.sched_policy read-only. Added docs, bindings, and a test for
Ewan Mellor [Mon, 9 Apr 2007 11:20:35 +0000 (12:20 +0100)]
Make host.sched_policy read-only.  Added docs, bindings, and a test for
host.cpu_configuration and host.sched_policy.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agohvm ioemu: Avoid accessing invalid pseudophysical addresses in HVM
Keir Fraser [Mon, 9 Apr 2007 11:05:26 +0000 (12:05 +0100)]
hvm ioemu: Avoid accessing invalid pseudophysical addresses in HVM
guest's memory map.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoAdded bindings and documentation for host.send_debug_keys and host.get_log.
Ewan Mellor [Mon, 9 Apr 2007 10:39:27 +0000 (11:39 +0100)]
Added bindings and documentation for host.send_debug_keys and host.get_log.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agoxen: Fix domctl page-type definitions to be unsigned quantities. This
Keir Fraser [Mon, 9 Apr 2007 10:12:15 +0000 (11:12 +0100)]
xen: Fix domctl page-type definitions to be unsigned quantities. This
avoids them being erroneously sign-extended to 64 bits which was
breaking 64-bit HVM save/restore.

Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agolibxc: Fix save/restore code for style.
Keir Fraser [Mon, 9 Apr 2007 10:11:23 +0000 (11:11 +0100)]
libxc: Fix save/restore code for style.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoAdd bindings and docs for the host.dmesg_clear call.
Ewan Mellor [Sun, 8 Apr 2007 22:03:16 +0000 (23:03 +0100)]
Add bindings and docs for the host.dmesg_clear call.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
19 years agolinux: Fix reboot.c after PV-on-HVM changes.
kfraser@localhost.localdomain [Tue, 10 Apr 2007 14:35:37 +0000 (15:35 +0100)]
linux: Fix reboot.c after PV-on-HVM changes.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoPV-on-HVM: Fixes for save/restore. Also gets rid of separate modules
kfraser@localhost.localdomain [Tue, 10 Apr 2007 14:31:53 +0000 (15:31 +0100)]
PV-on-HVM: Fixes for save/restore. Also gets rid of separate modules
reboot.ko and xenbus.ko. These are now part of xen-platform-pci.ko.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoFix PV guest restore.
kfraser@localhost.localdomain [Tue, 10 Apr 2007 12:46:28 +0000 (13:46 +0100)]
Fix PV guest restore.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoMerge
Tim Deegan [Tue, 10 Apr 2007 09:31:42 +0000 (10:31 +0100)]
Merge

19 years agoMerge
Tim Deegan [Tue, 10 Apr 2007 09:30:48 +0000 (10:30 +0100)]
Merge

19 years agoMerge with xen-ia64-unstable.hg
kfraser@localhost.localdomain [Tue, 10 Apr 2007 09:29:05 +0000 (10:29 +0100)]
Merge with xen-ia64-unstable.hg

19 years agoxend: Destroy information about the domain in case an error occurs
kfraser@localhost.localdomain [Tue, 10 Apr 2007 09:28:11 +0000 (10:28 +0100)]
xend: Destroy information about the domain in case an error occurs
during resume of a domain.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
19 years ago[HAP] Install P2M entries in monitor table under PAE mode
"Huang2, Wei" [Tue, 10 Apr 2007 09:26:31 +0000 (10:26 +0100)]
[HAP] Install P2M entries in monitor table under PAE mode
This patch installs P2M table entries in monitor table when Xen is
running under PAE mode. Without it, hypervisor might have trouble of
accessing guests' high memory.

Signed-off-by: Wei Huang <wei.huang2@amd.com>
19 years agolibxc: Clarify xc_mmu interface and make it private.
kfraser@localhost.localdomain [Fri, 6 Apr 2007 21:48:25 +0000 (22:48 +0100)]
libxc: Clarify xc_mmu interface and make it private.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoMerge with xen-ia64-unstable.hg.
kfraser@localhost.localdomain [Fri, 6 Apr 2007 21:32:57 +0000 (22:32 +0100)]
Merge with xen-ia64-unstable.hg.

19 years agomerge with xen-unstable.hg
Alex Williamson [Fri, 6 Apr 2007 16:08:30 +0000 (10:08 -0600)]
merge with xen-unstable.hg

19 years ago[IA64] Fix serial console IRQ on PRIMEQUEST
Alex Williamson [Fri, 6 Apr 2007 16:06:30 +0000 (10:06 -0600)]
[IA64] Fix serial console IRQ on PRIMEQUEST

Use GSI instead of IRQ number and set ns16550_com1_gsi so that
iosapic_register_intr() is called.

Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
19 years agolinux: Export xen_{create,destroy}_contiguous_region to modules.
Keir Fraser [Fri, 6 Apr 2007 14:09:56 +0000 (15:09 +0100)]
linux: Export xen_{create,destroy}_contiguous_region to modules.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoxen x86/64: Fix int80 direct trap. It must check for events and also
Keir Fraser [Fri, 6 Apr 2007 14:07:34 +0000 (15:07 +0100)]
xen x86/64: Fix int80 direct trap. It must check for events and also
disable interrupts before exiting to guest context.

Also sprinkle about some assertions about interrupt-enable status.

Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoxen: Remove unused show_xen_trace().
Keir Fraser [Fri, 6 Apr 2007 13:35:25 +0000 (14:35 +0100)]
xen: Remove unused show_xen_trace().
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoxen: Do not BUG_ON page count_info in free_domheap_pages().
Keir Fraser [Fri, 6 Apr 2007 13:34:43 +0000 (14:34 +0100)]
xen: Do not BUG_ON page count_info in free_domheap_pages().
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agox86: Do not print anything when we fail to emulate an
Keir Fraser [Fri, 6 Apr 2007 10:27:36 +0000 (11:27 +0100)]
x86: Do not print anything when we fail to emulate an
instruction. This is causing the logs to get spammed with
uninteresting cases.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoPV-on-HVM: A bit more re-jigging so the build gets further against
Keir Fraser [Fri, 6 Apr 2007 10:17:08 +0000 (11:17 +0100)]
PV-on-HVM: A bit more re-jigging so the build gets further against
native Linux 2.6.5. It's not quite there still, but closer.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agominios: Fix xenbus request-id release.
Keir Fraser [Fri, 6 Apr 2007 09:15:31 +0000 (10:15 +0100)]
minios: Fix xenbus request-id release.
From: Jacob Gorm Hansen <jacobg@diku.dk>
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoia64: Fix libxenguest build after save/restore interface changes.
Keir Fraser [Fri, 6 Apr 2007 09:14:02 +0000 (10:14 +0100)]
ia64: Fix libxenguest build after save/restore interface changes.
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
19 years agoxen: Make bool_t an arch-dep definition, and define macros
Keir Fraser [Fri, 6 Apr 2007 09:10:45 +0000 (10:10 +0100)]
xen: Make bool_t an arch-dep definition, and define macros
specifically for atomic test-and-modify operations on bool_t.
Signed-off-by: Keir Fraser <keir@xensource.com>
19 years agoSerialize string string maps.
Ewan Mellor [Thu, 5 Apr 2007 17:47:04 +0000 (18:47 +0100)]
Serialize string string maps.

Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
19 years agoMerge
Tim Deegan [Thu, 5 Apr 2007 17:12:35 +0000 (18:12 +0100)]
Merge